home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 7 / Joystick Magazine 07.iso / pc / sharewar / blind / install.bat < prev    next >
DOS Batch File  |  1995-01-03  |  2KB  |  70 lines

  1. @echo off
  2. cls
  3. echo Blind Justice demo version 1.4
  4. echo Installation program
  5. echo ˇ
  6. echo  This batch file is a simple utility which lets you quickly setup the
  7. echo Blind Justice demo.
  8. echo ˇ
  9. echo  The "full" demo consists of two files : BJDEMO.ZIP and BJSOUND.ZIP.
  10. echo BJDEMO.ZIP contains all of the required game files, whereas BJSOUND.ZIP
  11. echo is optional.
  12. echo ˇ
  13. echo  If you have BJSOUND.ZIP in the same directory as BJDEMO.ZIP, both files
  14. echo will be extracted for you.
  15. echo ˇ
  16. pause
  17. echo ˇ
  18. echo Searching for game files...
  19.         if exist JUSTICE.ZIP goto :gamenote
  20.         if not exist JUSTICE.ZIP goto :nogamenote
  21. :returngamenote
  22.         if exist BJSOUND.ZIP goto :soundnote
  23.         if not exist BJSOUND.ZIP goto :nosoundnote
  24. echo ˇ
  25.         :returnsoundnote
  26. echo ˇ
  27. goto :install
  28.  
  29. :gamenote
  30. echo 
  31. echo The game component files have been found. They will be extracted.
  32. goto :returngamenote
  33.  
  34. :nogamenote
  35. echo 
  36. echo The game component files have NOT been found. Please re-unzip the
  37. echo original demo .zip files.
  38. echo Missing: JUSTICE.ZIP
  39. goto :returngamenote
  40.  
  41. :soundnote
  42. echo 
  43. echo The sound add-on has been found! This will also be extracted.
  44. goto :returnsoundnote
  45.  
  46. :nosoundnote
  47. echo 
  48. echo BJSOUND.ZIP not found. The sound add-on will not be installed.
  49. goto :returnsoundnote
  50.  
  51. :install
  52. echo Press CONTROL-C followed by Y to abort, or ...
  53. pause
  54.  
  55. if exist JUSTICE.ZIP PKUNZIP JUSTICE.ZIP -d
  56. if exist BJSOUND.ZIP PKUNZIP BJSOUND.ZIP -d
  57.  
  58. md svgame\game0
  59. md svgame\game1
  60. md svgame\game2
  61. md svgame\game3
  62. md svgame\gamedat
  63.  
  64. del justice.zip >nul
  65. del pkunzip.exe >nul
  66. setup
  67. cls
  68. echo Type  JUSTICE [enter] to begin the game.
  69.  
  70.